One-way Manova: NRMANOVA

Usage Arguments Note Author(s) Examples

Usage

1
NRMANOVA(x)

Arguments

r
k
f
n

Note

More Packages to come to accommadate all models and designs in library called Novice ANOVA. Also, k is number of a set of factor like a measure of time. N is the sample size while usually you can directly input your data from excel or the data source of your choosing. F which is the factor can also be inputted from the data source.

Author(s)

Joseph V. Lipoff, Will Pauls, Kaylin C. Dobbs, Jordan L. Jensen, Kevin Woods, Evan T. Johnson, Benjamin F. Timson, Scott D. Zimmerman,and Paul Plummer

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
r=(rnorm(170, mean=23))
D=factor(c(rep("D1",34),rep("D2",34),rep("D3",34),rep("D4",34),rep("D5",34)))
f=unique(factor(c(rep("CON",(70)),rep("INT",(45)),rep("SED",(55)))))
Data_New=data.frame(r,f,D)
k=5
n=34
RManovaNov(r,k,f,n)

r =dat$avg
f = unique(factor(dat$day))
k = 5
n=34
RManovaNov(dat$avg, 5,f,34)

wrpauls21/NRMANOVA documentation built on May 6, 2019, 12:04 a.m.